home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / vim / src / proto / memfile.pro < prev    next >
Text File  |  1995-03-09  |  853b  |  15 lines

  1. /* memfile.c */
  2. struct memfile *mf_open __PARMS((unsigned char *fname, int new, int fail_nofile));
  3. int mf_open_file __PARMS((struct memfile *mfp, unsigned char *fname));
  4. void mf_close __PARMS((struct memfile *mfp, int delete));
  5. struct block_hdr *mf_new __PARMS((struct memfile *mfp, int negative, int page_count));
  6. struct block_hdr *mf_get __PARMS((struct memfile *mfp, long nr, int page_count));
  7. void mf_put __PARMS((struct memfile *mfp, struct block_hdr *hp, int dirty, int infile));
  8. void mf_free __PARMS((struct memfile *mfp, struct block_hdr *hp));
  9. int mf_sync __PARMS((struct memfile *mfp, int all, int check_char));
  10. int mf_release_all __PARMS((void));
  11. long mf_trans_del __PARMS((struct memfile *mfp, long old));
  12. void mf_fullname __PARMS((struct memfile *mfp));
  13. int mf_need_trans __PARMS((struct memfile *mfp));
  14. void mf_statistics __PARMS((void));
  15.